home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / turbovis / tvtoyc01.zip / TEST.MAK < prev    next >
Text File  |  1994-01-20  |  1KB  |  82 lines

  1. .AUTODEPEND
  2.  
  3. BASEDIR = \BORLANDC
  4.  
  5. #        *Translator Definitions*
  6. CC = bcc +TEST.CFG
  7. TASM = TASM
  8. TLIB = tlib
  9. TLINK = tlink
  10. LIBPATH = $(BASEDIR)\TVISION\LIB;$(BASEDIR)\LIB
  11. INCLUDEPATH = $(BASEDIR)\TVISION\INCLUDE;$(BASEDIR)\INCLUDE
  12.  
  13.  
  14. #        *Implicit Rules*
  15. .c.obj:
  16.   $(CC) -c {$< }
  17.  
  18. .cpp.obj:
  19.   $(CC) -c {$< }
  20.  
  21. #        *List Macros*
  22. Link_Exclude =  \
  23.  helptest.hlp
  24.  
  25. Link_Include =  \
  26.  tvvideo.obj \
  27.  vesa.obj \
  28.  video.obj \
  29.  modedlg.obj \
  30.  test.obj
  31.  
  32. #        *Explicit Rules*
  33. test.exe: test.cfg $(Link_Include) $(Link_Exclude)
  34.   $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
  35. c0l.obj+
  36. tvvideo.obj+
  37. vesa.obj+
  38. video.obj+
  39. modedlg.obj+
  40. test.obj
  41. test
  42.         # no map file
  43. graphics.lib+
  44. tv.lib+
  45. emu.lib+
  46. mathl.lib+
  47. cl.lib
  48. |
  49.  
  50.  
  51. #        *Individual File Dependencies*
  52. helptest.hlp: test.cfg helptest.txt 
  53.     \BC\TVISION\HELP\TVHC helptest helptest helpctx
  54.  
  55. tvvideo.obj: test.cfg tvvideo.cpp 
  56.  
  57. vesa.obj: test.cfg vesa.cpp 
  58.  
  59. video.obj: test.cfg video.cpp 
  60.  
  61. modedlg.obj: test.cfg modedlg.cpp 
  62.  
  63. test.obj: test.cfg test.cpp
  64.  
  65. #        *Compiler Configuration File*
  66. test.cfg: test.mak
  67.   copy &&|
  68. -ml
  69. -v
  70. -vi-
  71. -H=TEST.SYM
  72. -wamb
  73. -wamp
  74. -wstv
  75. -weas
  76. -wpre
  77. -I$(INCLUDEPATH)
  78. -L$(LIBPATH)
  79. | test.cfg
  80.  
  81.  
  82.